home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / programm.ing / spin3d.lzh / BENCHMRK.TXT next >
Encoding:
Text File  |  1994-03-29  |  592 b   |  17 lines

  1. benchmark.txt
  2. -------------
  3.  
  4. ** These are rough figures but it gives you an idea on the
  5.    speed/efficiency of one implementation vs another
  6.  
  7. These results are from doing a 32 bit long int multiplication
  8. of two numbers ONE MILLION TIMES.
  9.  
  10. Multiplying 2 long ints using Laser C's '*'           ===> 1:35
  11.  
  12. Multiplying 2 long ints using my In-line assembly     ===> 45 sec
  13.  
  14. Multiplying 2 long ints using modified In-line        ===> 37 sec 
  15. assembly( i.e only send one value to the assembly
  16. function, this function contains a PRECOMPUTED
  17. sin or cos value that it multiplies by)